====== pageCSS() ======

''void **pageCSS**(string //CSS//)''

The command ''pageCSS()'' adds CSS instructions to the HTML ''<head>'' of the questionnaire page, within a ''<style>'' tag. The CSS instructions are valid only for the specific questionnaire page.


===== Example =====

<code php>
pageCSS('
body {
  background-color: green;
  color: white;
}
');
</code>